home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Magnum One
/
Magnum One (Mid-American Digital) (Disc Manufacturing).iso
/
d12
/
cbibcode.arc
/
PUTCH.C
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
C/C++ Source or Header
|
1991-08-05
|
233 b
|
10 lines
/* putch.c --- p 527 */
#include <conio.h>
char buffer[81] = "Testing putch...\n";
main()
{
int i;
/* Write characters to display until we reach the null */
for(i=0; i<81 && buffer[i] != '\0'; i++)
putch(buffer[i]);
}